home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / crtex / ex8.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  205 b   |  12 lines

  1. Program Example8;
  2. uses Crt;
  3.  
  4. { Program to demonstrate the ClrScr function. }
  5.  
  6. begin
  7.   Writeln('Press any key to clear the screen');
  8.   ReadKey;
  9.   ClrScr;
  10.   Writeln('Have fun with the cleared screen');
  11. end.
  12.